Some Regression Topics
Poisson Regression
Data are from a Poisson distribution with mean and . A likelihood function can be written and the parameters can be estimated using maximum likelihood.
The Generalized Linear Model (GLM
)
Data are from a distribution within the exponential family, with mean and for some link function, . A likelihood function can now be written and the parameters can be estimated using maximum likelihood.
Details
Data are from a distribution within the exponential family, with mean and for some link function, .
The exponential family includes distributions such as the Gaussian, binomial, Poisson, and gamma (and thus exponential and chi-squared)
The link functions are typically
identity (with the Gaussian)
log (with the Poisson and the gamma)
logistic (with the binomial)
A likelihood function can be set up for each of these models and the parameters can be estimated using maximum likelihood.
The glm
package in R has options to estimate parameters in these models.